home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / VENKMAN.XPI / bin / chrome / venkman.jar / content / venkman / venkman-scripts.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-04-18  |  4.0 KB  |  89 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    -
  5.    - ***** BEGIN LICENSE BLOCK *****
  6.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  7.    -
  8.    - The contents of this file are subject to the Mozilla Public License Version
  9.    - 1.1 (the "License"); you may not use this file except in compliance with
  10.    - the License. You may obtain a copy of the License at
  11.    - http://www.mozilla.org/MPL/
  12.    -
  13.    - Software distributed under the License is distributed on an "AS IS" basis,
  14.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  15.    - for the specific language governing rights and limitations under the
  16.    - License.
  17.    -
  18.    - The Original Code is The JavaScript Debugger.
  19.    -
  20.    - The Initial Developer of the Original Code is
  21.    - Netscape Communications Corporation.
  22.    - Portions created by the Initial Developer are Copyright (C) 1998
  23.    - the Initial Developer. All Rights Reserved.
  24.    -
  25.    - Contributor(s):
  26.    -   Robert Ginda, <rginda@netscape.com>, original author
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the GPL or the LGPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <overlay id="venkman-scripts-overlay"
  43.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  44.  
  45.   <overlaytarget id="scripts-overlay-target">
  46.     <script>
  47.       <![CDATA[
  48.       /* set this to false to turn off dd() messages */
  49.       var DEBUG = true;
  50.       ]]>
  51.     </script>
  52.   
  53.     <script src="chrome://global/content/nsUserSettings.js"/>
  54.     <script src="chrome://global/content/nsTransferable.js"/>
  55.     <script src="chrome://global/content/nsClipboard.js"/>
  56.     <script src="chrome://global/content/nsDragAndDrop.js"/>
  57.     <script src="chrome://communicator/content/contentAreaUtils.js"/>
  58.     <script src="chrome://communicator/content/contentAreaDD.js"/>
  59.     <script src="chrome://communicator/content/findUtils.js"/>
  60.     <script src="chrome://global/content/strres.js"/>
  61.   
  62.     <script src="chrome://venkman/content/pref-manager.js"/>
  63.     <script src="chrome://venkman/content/command-manager.js"/>
  64.     <script src="chrome://venkman/content/menu-manager.js"/>
  65.     <script src="chrome://venkman/content/view-manager.js"/>
  66.     <script src="chrome://venkman/content/tree-utils.js"/>
  67.     <script src="chrome://venkman/content/file-utils.js"/>
  68.     <script src="chrome://venkman/content/html-consts.js"/>
  69.   
  70.     <script src="chrome://venkman/content/venkman-utils.js"/>
  71.     <script src="chrome://venkman/content/venkman-static.js"/>
  72.     <script src="chrome://venkman/content/venkman-handlers.js"/>
  73.     <script src="chrome://venkman/content/venkman-debugger.js"/>
  74.     <script src="chrome://venkman/content/venkman-profiler.js"/>
  75.     <script src="chrome://venkman/content/venkman-jsdurl.js"/>
  76.     <script src="chrome://venkman/content/venkman-url-loader.js"/>
  77.     <script src="chrome://venkman/content/venkman-commands.js"/>
  78.     <script src="chrome://venkman/content/venkman-prefs.js"/>
  79.     <script src="chrome://venkman/content/venkman-eval.js"/>
  80.     <script src="chrome://venkman/content/venkman-menus.js"/>
  81.     <script src="chrome://venkman/content/venkman-msg.js"/>
  82.     <script src="chrome://venkman/content/venkman-munger.js"/>
  83.     <script src="chrome://venkman/content/venkman-views.js"/>
  84.     <script src="chrome://venkman/content/venkman-records.js"/>
  85.   
  86.   </overlaytarget>
  87.  
  88. </overlay>
  89.